* {
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 500;
}


summary {
    font-size: 18px;
    font-weight: 500;
    background-color: #fafafa;
    color: #20517e;
    padding: 15px;
    margin-bottom: 1rem;
    outline: none;
    border-radius: 0.25rem;
    text-align: left;
    cursor: pointer;
    position: relative;
}
details[open] summary ~ * {
    animation: sweep .5s ease-in-out;
}
@keyframes sweep {
    0%    {opacity: 0; margin-top: -10px}
    100%  {opacity: 1; margin-top: 0px}
}
details > summary::after {
    position: absolute;
    content: "+";
    right: 20px;
}
details[open] > summary::after {
    position: absolute;
    content: "-";
    right: 20px;
}
details > summary::-webkit-details-marker {
    display: none;
}




.testimonial {
    margin-bottom: 35px;
    background: linear-gradient(
            135deg,rgb(41,171,226) 0%,rgb(0,103,188) 100%);
    padding: 40px 25px 25px;
}
.testimonial:last-child {
    margin-right: 0;
}
.testimonial__text {
    font-weight: normal;
    font-size: 16px;
    line-height: 21px;
    margin-bottom: 1.5625rem;
    color: #fff;
}
.testimonial__name {
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
    color: #fff;
}

.testimonial__info {
    display: inline-block;
}


:root {
    --white: hsl(0, 0%, 100%);
    --card-blue: hsl(219, 30%, 18%);
    --bg-blue: hsl(216, 53%, 9%);
    --base-font: "Open Sans", sans-serif;
}



.testim .wrap{
    position: relative;
    width: 100%;
    padding: 40px 20px;
    margin: auto;
    box-sizing: border-box;
}
.testim .arrow{
    display: block;
    position: absolute;
    color: #eee;
    cursor: pointer;
    font-size: 2em;
    top: 50%;
    transform: translateY(-50%);
    transition: all .3s ease-in-out;
    padding: 5px;
    z-index: 8;
}
.testim .arrow:before{
    cursor: pointer;
}
.testim .arrow.left{
    left: 10px;
}
.testim .arrow.right{
    right: 10px;
}
.testim .arrow:hover{
    color: #20517e;
}
.testim .dots{
    text-align: center;
    position: absolute;
    width: 100%;
    bottom: 60px;
    left: 0;
    display: block;
    padding: 0;
    box-sizing: border-box;
    z-index: 3333;
    height: 12px;
}
.testim .dots .dot{
    list-style-type: none;
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #eee;
    margin: 0 10px;
    cursor: pointer;
    transition: all .5s ease-in-out;
    position: relative;
}
.testim .dots .dot.active,
.testim .dots .dot:hover{
    background: #20517e;
    border-color: #20517e;
}

.testim .dots .dot.active{
    animation: testim-scale .5s ease-in-out forwards;
}
.testim .cont{
    position: relative;
    overflow: hidden;
}
.testim .cont > div{
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 0 70px 0;
    opacity: 0;
}
.testim .cont > div.inactive{
    opacity: 1;
}
.testim .cont > div.active{

    position: relative;
    opacity: 1;

}
.testim .cont div .img img{
    display: block;
    width: 100px;
    height: 100px;
    margin: auto;
    border-radius: 50%;
}
.testim .cont div h2{
    color: #20517e;
    font-size: 1em;
    margin: 15px 0;
}
.testim .cont div p{
    color: #000;
    width: 80%;
    margin: auto;
}

.testim .cont div.active .img img{
    animation: testim-show .5s ease-in-out forwards;
}
.testim .cont div.active h2{
    animation: testim-content-in .4s ease-in-out forwards;
}
.testim .cont div.active p {
    animation: testim-content-in .5s ease-in-out forwards;
}
.testim .cont div.inactive .img img{
    animation: testim-hide .5s ease-in-out forwards;
}
.testim .cont div.inactive h2{
    animation: testim-content-out .4s ease-in-out forwards;
}
.testim .cont div.inactive p {
    animation: testim-content-out .5s ease-in-out forwards;
}

@keyframes testim-scale {
    0% {
        box-shadow: 0px 0px 0px 0px #eee;
    }
    35% {
        box-shadow: 0px 0px 10px 5px #eee;
    }
    70% {
        box-shadow: 0px 0px 10px 5px rgb(0,103,188);
    }
    100% {
        box-shadow: 0px 0px 0px 0px rgb(0,103,188);
    }
}

@keyframes testim-content-in {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes testim-content-out {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-100%);
    }
}
@keyframes testim-show {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
@keyframes testim-hide {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0);
    }
}
/* coding with nick */

/* Responsive */

@media all and (max-width: 300px) {
    body {
        font-size: 14px;
    }
}
@media all and (max-width: 500px) {
    .testim .arrow{
        font-size: 1.5rem;
    }
}





.location-near {
    display: inline-block;
}

.location-near a {
    color: #29abe2;
    text-decoration: none;
}

.location-near:not(:last-child):after {
    content: "\2022";
    margin: 0 5px;
}

.location-near a:hover {
    text-decoration: underline;
    text-decoration-style: dotted;
}




.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin: 15px 0;
    line-height: 1.2;
}

p {
    line-height: 1.7;
}
h1 {
    font-size: 2.25rem;
    font-weight: 600;
}
h3 {
    font-weight: 500;
    font-size: 24px;
}
h2 {
    font-size: 30px;
}
h4 {
    font-weight: 500;
    font-size: 1.5rem;
}

.color-white {
    color: white;
}

.w100 {
    font-weight: 100;
}
.w200 {
    font-weight: 200;
}
.w300 {
    font-weight: 300;
}
.w400 {
    font-weight: 400;
}
.w500 {
    font-weight: 500;
}
.w600 {
    font-weight: 600;
}

.wrapper {
    position:relative;
    overflow:hidden;
}

.header-margin {
    height: 65px;
}

.header-mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.05);
    background-color: #fff;
    z-index: 9;
}

.header-desktop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid #e9e9e9;
    background-color: #fff;
    z-index: 9;
}










.header-logo {
    margin-top: 10px;
    display: block;
}






.header ul {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
}
.header ul:after {
    display: block;
    content: ' ';
    clear: both;
    float: none;
}
.header ul.menu > li {
    float: right;
    position: relative;
}
.header ul.menu > li > a {
    display: block;
    padding: 10px;
    color: #000;
    background-color: #fff;
    text-decoration: none;
}
.header ul.menu > li > a:hover {
    background-color: #fafafa;
}
.header ul.submenu {
    display: none;
    position: absolute;
    top: 37px;
    right: 0;
    background-color: #fff;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border-radius: 15px;
}
.header ul.submenu > li {
    display: block;
}
.header ul.submenu > li > a {
    display: block;
    padding: 10px;
    color: #000;
    background-color: #fff;
    text-decoration: none;
    min-width: 200px;
}
.header ul.submenu > li > a:hover {
    font-weight: bold;
}


ul.menu > li:hover > ul.submenu {
    display: block;
}








.breadcrumbs {
    margin: 0;
    background-color: #fff;
    padding: 10px 0;
}

.breadcrumb-menu {
    margin: 0;
    padding: 0;
}

.breadcrumb-menu .breadcrumb-item {
    display: inline-block;
}

.breadcrumb-menu .breadcrumb-item {
    font-size: 12px;
    font-weight: 500;
}

.breadcrumb-menu .breadcrumb-item a {
    color: #000;
}
.breadcrumb-menu .breadcrumb-item.active {
    color: #888888;
}

.breadcrumb-item + .breadcrumb-item::before {
    display: inline-block;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    color: #6c757d;
    content: "/";
}







.benefits-item {
    padding-top: 50px;
    padding-bottom: 50px;
    text-align: center;
    color: #fff;
}

.benefits-item:nth-child(1) {
    background-color: #29abe2;
}
.benefits-item:nth-child(2) {
    background-color: #2288bf;
}
.benefits-item:nth-child(3) {
    background-color: #155d99;
}
.benefits-item:nth-child(4) {
    background-color: #0c457a;
}








.cities-list {
    padding: 0;
    margin: 0;
}

.cities-list li {
    display: inline-block;
}

.cities-list li:after {
    content: "\2022";
    margin: 0 5px;
}

.cities-list li:last-child:after {
    content: '';
}

.cities-list li a {
    text-decoration: none;
    line-height: 1.5;
    color: #29abe2;
    font-weight: 600;
}

:root {
    --responsive--alignwide-width: min(calc(100vw - 8 * 25px), 1240px);
}

@media only screen and (min-width: 992px) {
    .start-at-container {
        margin-left: 25px;
    }
}


.testimonials {
    margin-top: 25px;
    margin-bottom: 25px;
    background-color: #5B6770;
    padding: 25px 0;
    text-align: center;
    color: #fff;
}

.button.button-white {
    display: inline-block;
    color: #fff;
    border: 2px solid #fff;
    padding: 15px 25px;
    text-decoration: none;
    font-weight: 500;
}

.button.button-white:hover {

    border: 2px solid #20517e;
    background-color: #20517e;
}

.header ul.menu > li > .button.button-primary {
    margin-left: 25px;
    background-color: #20517e;
    display: inline-block;
    color: #fff;
    border: none;
    padding: 10px 25px;
    text-decoration: none;
    font-weight: 500;
}

.header ul.menu > li > .button.button-primary:hover {
    background-color: #035E84;
}


ul li {
    line-height: 1.7;
}

ol li {
    line-height: 1.7;
}

.footer {
    background-color: #f3f3f3;
    padding: 50px 0;
    margin-top: 50px;
}

.footer-menu {
    margin: 0;
    padding: 0;
}
.footer-menu li {
    display: inline-block;
    margin-right: 15px;
    list-style: none;
}
.footer-menu li:last-child {
    margin-left: 0;
}
.footer-menu li a {
    text-decoration: underline;
    line-height: 1.7;
    font-weight: 500;
    text-underline-offset: 3px;
    color: #000;

}
.footer-logo {
    margin-bottom: 15px;
}

.footer-menu li a:hover {
    text-decoration-style: dotted;
}


.header-logo {
    text-decoration: none;
}
.logo span:first-child {
    color: #000;
    font-size: 24px;
}
.logo span:last-child {
    color: #20517e;
    font-size: 24px;
    margin-left: 5px;
}





.button,.button-white {
    padding: 15px 25px;
    font-size: 16px;
    border: 2px solid #ccc;
    color: #fff;
    background-color: transparent;
    cursor: pointer;
}














.header-mobile nav {
    background: #fff;
    border-bottom: 1px solid #ddd;
    height: 55px;
    position: relative;
}
.header-mobile .nav-links {
    display: block;
    position: absolute;
    top: 55px;
    left: 0;
    width: 100%;
}
.header-mobile .nav-links::before {
    background: rgba(0, 0, 0, 0.5);
    content: "";
    height: 100vh;
    left: 0;
    top: 0;
    position: absolute;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    transition: all 0.3s;
}
.header-mobile .nav-links li {
    border-bottom: 1px solid #ddd;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s;
}
.header-mobile .nav-links li a {
    background: #fff;
    color: #404040;
    display: block;
    font-size: 16px;
    font-weight: 500;
    padding: 12px 20px;
    text-align: left;
    width: 100%;
    transition: all 0.3s;
}
.header-mobile .nav-links li a:hover {
    color: coral;
}

.header-mobile input[type=checkbox] {
    position: absolute;
    opacity: 0;
    visibility: hidden;
}
.header-mobile input[type=checkbox]:checked + label {
    border: 2px solid silver;
    border-radius: 50%;
    height: 19px;
    top: 16px;
    left: 18px;
    width: 19px;
    transform: rotate(-135deg);
}
.header-mobile input[type=checkbox]:checked + label::before {
    background: silver;
    top: 9px;
    left: 5px;
    width: 10px;
}
.header-mobile input[type=checkbox]:checked + label::after {
    background: silver;
    opacity: 1;
    top: 9px;
    left: 5px;
    visibility: visible;
    width: 10px
}
.header-mobile input[type=checkbox]:checked + label:hover {
    border-color: #29abe2;
}
.header-mobile input[type=checkbox]:checked + label:hover::before, .header-mobile input[type=checkbox]:checked + label:hover::after {
    background: #29abe2;
}
.header-mobile input[type=checkbox]:checked ~ .nav-links::before {
    opacity: 1;
    visibility: visible;
}
.header-mobile input[type=checkbox]:checked ~ .nav-links li {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.header-mobile input[type=checkbox]:checked ~ .nav-links li:nth-child(1) {
    transition-delay: 0s;
}
.header-mobile input[type=checkbox]:checked ~ .nav-links li:nth-child(2) {
    transition-delay: 0.1s;
}
.header-mobile input[type=checkbox]:checked ~ .nav-links li:nth-child(3) {
    transition-delay: 0.2s;
}
.header-mobile input[type=checkbox]:checked ~ .nav-links li:nth-child(4) {
    transition-delay: 0.3s;
}

.header-mobile label {
    background: none transparent;
    border: 2px solid #20517e;
    border-left: 0 solid transparent;
    border-right: 0 solid transparent;
    cursor: pointer;
    display: block;
    height: 15px;
    position: absolute;
    top: 18px;
    left: 20px;
    width: 24px;
    transition: all 0.2s;
}
.header-mobile label::before {
    background: #20517e;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    top: 6px;
    width: 24px;
    transition: all 0.2s;
}
.header-mobile label::after {
    background: #20517e;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    top: 6px;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    transform: rotate(90deg);
    transition: all 0.2s;
}


.header-mobile .header-logo {
    display: inline-block;
    margin-left: 60px;
    margin-top: 14px;
}
















/* XS */
@media (max-width: 575px) {

    .header-mobile {
        display: block;
    }

    .header-margin {
        height: 55px;
    }

}

/* SM */
@media (min-width: 576px) and (max-width: 767px) {

    .header-mobile {
        display: block;
    }

    .header-margin {
        height: 55px;
    }

}
@media (min-width: 576px) {

}
@media (max-width: 767px) {

}

/* MD */
@media (min-width: 768px) and (max-width: 991px) {

    .header-mobile {
        display: block;
    }

    .header-margin {
        height: 55px;
    }

}
@media (min-width: 768px) {

}
@media (max-width: 991px) {

    /*.container {
        padding-left: 40px;
        padding-right: 40px;
    }*/

    .top-blocks .col-md-12, .top-blocks .col-md-6 {
        padding: 40px !important;
        padding-bottom: 15px !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    section.top-blocks > div > div:nth-child(1) > div:nth-child(2) {
        display: none;
    }

    .top-blocks .start-at-container {
        margin-top: 140px !important;
    }

    .top-blocks h1 {
        font-size: 24px !important;
    }

    .top-blocks .start-at-container p {
        display: none;
    }


}

/* LG */
@media (min-width: 992px) and (max-width: 1199px) {

    .header-desktop {
        display: block;
    }

}
@media (min-width: 992px) {


}
@media (max-width: 1199px) {
}

/* XL */
@media (min-width: 1200px) and (max-width: 1399px) {

    .header-desktop {
        display: block;
    }

}
@media (min-width: 1200px) {

}
@media (max-width: 1399px) {

}

/* XXL */
@media (min-width: 1400px) {

    .header-desktop {
        display: block;
    }

}


@media (max-width: 575px) {
    .header-mobile nav {
        height: unset !important;
        padding-bottom: 10px !important;
    }
}
